home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / doc / bash-completion / BUGS next >
Text File  |  2003-05-01  |  799b  |  21 lines

  1. $Id: BUGS,v 1.3 2003/05/01 05:49:58 ianmacd Exp $
  2.  
  3. The following are known bugs with the bash completion code. See also the
  4. KNOWN PROBLEMS section of the README file.
  5.  
  6. - sudo completion goes awry when a command line contains wildcards
  7.  
  8.   The problem arises because sudo needs to hand off completion duties to
  9.   the function bound to the command that it is told to execute. As part of
  10.   this process, any arguments on the command line are expanded.
  11.  
  12.   Suppose you have the following command line:
  13.  
  14.   $ sudo mv *.txt foo/
  15.  
  16.   This command line contains four tokens, of which '*.txt' is the third.
  17.   However, after expansion of the wildcard, there may be any number of
  18.   arguments in the command-line that is ultimately handed to mv.
  19.  
  20.   Note: this bug is believed to be fixed as of the 20030501 release
  21.